home *** CD-ROM | disk | FTP | other *** search
- /* ----------------------------------------------------------------------
- edit.c
- ---------------------------------------------------------------------- */
-
- #include "the_defines.h"
- #include "the_globals.h"
- #include "the_prototypes.h"
-
- /* ----------------------------------------------------------------------
- DoMenuEdit
- ---------------------------------------------------------------------- */
- void DoMenuEdit(theItem)
- int theItem;
- {
- switch (theItem)
- {
- case EDIT_UNDO:
- break;
- case EDIT_CUT:
- break;
- case EDIT_COPY:
- break;
- case EDIT_PASTE:
- break;
- case EDIT_CLEAR:
- break;
- case EDIT_SELECT_ALL:
- break;
- default:
- break;
- }
- }
-